github.com/andybalholm/brotli/matchfinder.Pathfinder.history (field)

13 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		pathfinder.go#L36: 	history []byte
		pathfinder.go#L49: 	q.history = q.history[:0]
		pathfinder.go#L107: 	if len(q.history) > q.MaxDistance*2 {
		pathfinder.go#L109: 		delta := len(q.history) - q.MaxDistance
		pathfinder.go#L110: 		copy(q.history, q.history[delta:])
		pathfinder.go#L111: 		q.history = q.history[:q.MaxDistance]
		pathfinder.go#L121: 	historyLen := len(q.history)
		pathfinder.go#L122: 	q.history = append(q.history, src...)
		pathfinder.go#L124: 	src = q.history